{% extends 'core/_base.html' %} {% block title %} Expense Type List {% endblock title %} {% block body %}
Expense Type List
{% if expense_type %}
{% for items in expense_type %} {% endfor %}
SL. Name Created Action
{{ forloop.counter }} {{ items.name }} {{ items.created_at }}
{% else %} {% include 'core/info/message.html' %} {% endif %}
{% endblock body %}